home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / CINCINAT.L2 < prev    next >
Text File  |  1996-04-01  |  3KB  |  123 lines

  1. name Cincinatti
  2.  
  3. O >4
  4. N >3
  5. G >2
  6. X ->34
  7. Z ->34
  8. D >2
  9. I ->34
  10. K ->34
  11. U ->34
  12. W ->34
  13. P ->34
  14. Q ->34
  15. R ->34
  16. F >33
  17. V 2
  18. T 4
  19. S >4
  20. M >2
  21.  
  22. ModalGs 0 1 2 3 73 76 80 81 82 83 84 85  # List of g codes that are modal    
  23.  
  24. First#? N                             # Y or N  'Output 1st sequence no.  
  25. Sequence#s N 1 10 10                  # Char, freq, incr & start          
  26.  
  27. Comment ( )                           # Begin End comment char.           
  28.  
  29. HCode Z                               # X or X U  'Horizontal char.       
  30. VCode X                               # Y or Y V  'Vertical char.         
  31. FeedCode F                            # Feed rate char.                   
  32.  
  33. Spindle 13 14 19                      # Cw, ccw & stop m codes            
  34. Coolant 8 9 7                         # On, Off & Mist m codes            
  35. SpeedType G 97 96                     # CSS and RPM g codes               
  36. FeedType G 95 94                      # IPR & IPM g codes                 
  37.  
  38.  
  39. ByDiameter? N                         # Y or N  'Output X val. by diameter
  40. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  41. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  42.  
  43. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  44.  
  45. Inch/MM 70 71                         # Inch & Metric g codes             
  46.  
  47. CtrCode K I                           # I J or R or I J K L               
  48.  
  49. Feed G21                            # Linear move                       
  50. Rapid G0                            # Rapid positioning word            
  51. Cw G22                              # Circular move clockwise           
  52. Ccw G23                             # Circular move counter clockwise   
  53.  
  54. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  55.  
  56. Drill                                 # Drilling canned/manual cycle      
  57. G0 Z[SClear]
  58. G1 Z[H]
  59. G0 Z[SClear]
  60. end
  61.  
  62. Peck                                  # Pecking canned/manual cycle       
  63. none
  64. end
  65.  
  66. Tap                                   # Tapping canned/manual cycle       
  67. G84 Z[H] F[FRate]
  68. end cancel
  69.  
  70. Ream                                  # Reaming canned/manual cycle       
  71. G85 Z[H] F[FRate]
  72. end cancel
  73.  
  74. Bore                                  # Boring canned/manual cycle        
  75. G74 R0
  76. G74 Z[H] R[SClear] F[FRate]
  77. end
  78.  
  79. Cancel                                # Cancel a canned/manual cycle      
  80. G80
  81. end
  82.  
  83. StartCode                             # Start of the program              
  84. end
  85.  
  86. 1stToolChange                         # First tool change                 
  87. O[Comp] G90 S[Speed] M42
  88. G[FeedType] M31
  89. G92 S[MaxRPM]
  90. G0 X.4 Z.4
  91. M[Direct]
  92. V77 T[Tool] M6
  93. G0 X[V] Z[H] M32
  94. G[SpeedType] R[V] S[Speed]
  95. End
  96.  
  97. Infeed                                # Enable cutter comp                
  98. G21 X[V] Z[H] D[Dcomp] F[FRate]
  99. end
  100.  
  101. Outfeed                               # Disable cutter comp               
  102. G21 X[V] Z[H] F[FRate]
  103. end
  104. AutoThread                            # Automatic thread canned cycle     
  105. G33
  106. End
  107.  
  108. ToolChange                            # Secondary tool changes            
  109. O[Comp] G90 S[Speed] M42
  110. G[FeedType] M31
  111. G92 S[MaxRPM]
  112. G0 X.4 Z.4
  113. M[Direct]
  114. V77 T[Tool] M6
  115. G0 X[V] Z[H] M32
  116. G[SpeedType] R[V] S[Speed]
  117. End
  118.  
  119. EndCode                               # End of the program                
  120. G0 X[EndV] Z[EndH]
  121. M30
  122. End
  123.